From 4155aa4c706a25d68bf1424780ddc6e09f947d91 Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild2.aw" Date: Tue, 2 Jan 2007 16:42:09 -0700 Subject: [PATCH] [IA64] tidy up vcpu_set_itc error message This patch enhances the error message in question in two minor ways * typo fix: one -> once * Print the entire message at once, otherwise it seems to end up geting interlaced with other dom0 kernel messages on the console (on my system at least). Signed-Off-By: Simon Horman --- xen/arch/ia64/xen/vcpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/arch/ia64/xen/vcpu.c b/xen/arch/ia64/xen/vcpu.c index da609c8a8e..4b57f2ddb0 100644 --- a/xen/arch/ia64/xen/vcpu.c +++ b/xen/arch/ia64/xen/vcpu.c @@ -1207,8 +1207,8 @@ IA64FAULT vcpu_set_itc(VCPU * vcpu, u64 val) #ifdef DISALLOW_SETTING_ITC_FOR_NOW static int did_print; if (!did_print) { - printk("vcpu_set_itc: Setting ar.itc is currently disabled\n"); - printk("(this message is only displayed one)\n"); + printk("vcpu_set_itc: Setting ar.itc is currently disabled " + "(this message is only displayed once)\n"); did_print = 1; } #else -- 2.30.2